home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / mach / sun4.md / machInt.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  66 lines

  1. /*
  2.  * machInt.h --
  3.  *
  4.  *    This file defines things that are shared between the "mach" modules
  5.  *    but aren't used by the rest of Sprite.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/mach/sun4.md/machInt.h,v 9.5 92/08/10 17:58:55 mgbaker Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _MACHINT
  20. #define _MACHINT
  21.  
  22. #include "sys/types.h"
  23. #ifdef KERNEL
  24. #include <mach.h>
  25. #else
  26. #include <kernel/mach.h>
  27. #endif
  28.  
  29. /*
  30.  * The bounds of the code that copies arguments from the user stack to
  31.  * the kernel stack.
  32.  */
  33. extern void MachFetchArgs _ARGS_((void));
  34. extern void MachFetchArgsEnd _ARGS_((void));
  35. extern void MachProbeStart _ARGS_((void));
  36. extern void MachProbeEnd _ARGS_((void));
  37.  
  38. extern void MachPageFault _ARGS_((unsigned int busErrorReg, Address addrErrorReg, unsigned int trapPsr, Address pcValue));
  39. extern int MachUserAction _ARGS_((void));
  40. extern void MachHandleTrap _ARGS_((int trapType, Address pcValue, unsigned int trapPsr));
  41. extern void MachUserDebug _ARGS_((void));
  42.  
  43. /*
  44.  * Asm routines.
  45.  */
  46. extern void MachRunUserProc _ARGS_((void));
  47. extern void MachHandleBadQuickCopy _ARGS_((void));
  48. extern void MachHandleBadProbe _ARGS_((void));
  49. extern void MachHandleBadArgs _ARGS_((void));
  50. extern void MachHandleBadArgs _ARGS_((void));
  51. /*
  52.  * FPU routines.
  53.  */
  54. extern void MachFPU_Emulate _ARGS_((int processID, Address instAddr, 
  55.         Mach_RegState *userRegsPtr, Mach_RegWindow *curWinPtr));
  56. extern void MachFPUDumpState _ARGS_((Mach_RegState *regStatePtr));
  57. extern void MachFPULoadState _ARGS_((Mach_RegState *regStatePtr));
  58.  
  59. extern void MachCallSigReturn _ARGS_((void));
  60. extern int fuword _ARGS_((caddr_t address));
  61. extern int fubyte _ARGS_((caddr_t address));
  62. extern int suword _ARGS_((caddr_t address, int value));
  63. extern void MachDoFastBoot _ARGS_((void));
  64.  
  65. #endif /* _MACHINT */
  66.